Method: Vips::Image#<

Defined in:
lib/vips8/image.rb

#<(other) ⇒ Image

Relational less than with an image, constant or array.

Parameters:

  • other (Image, Real, Array<Real>)

    relational less than with this

Returns:

  • (Image)

    result of less than

[View source]

852
853
854
855
# File 'lib/vips8/image.rb', line 852

def <(other)
    other.is_a?(Vips::Image) ? 
        relational(other, :less) : relational_const(other, :less)
end